
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #68bb59;
    --text-color: #333;
    --light-color: #ecf0f1;
    --dark-color: #1f2836;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header a:hover {
    color: var(--secondary-color);
}


/* Marquee */
.marquee-container {
overflow: hidden;
white-space: nowrap;
width: 100%;
}
.marquee-content {
display: inline-block;
padding-left: 100%;
animation: marquee 20s linear infinite;
}
@keyframes marquee {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}

/* Logo */
.logo-container {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.logo-text, .logo-text-hindi {
    text-align: center;
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-heading {
    position: relative;
    display: inline-block;
    color: #0369A0;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #68bb59;
    bottom: -10px;
    left: 20%;
    border-radius: 3px;
}

.contact-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.contact-table th {
    background-color: #0369A0;
    color: white;
    padding: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    background-color: white;
    vertical-align: middle;
}

.contact-table tr:nth-child(even) td {
    background-color: #f8f9fa;
}

.contact-table tr:hover td {
    background-color: #f1f9fe;
}

.contact-table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.contact-table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.contact-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.contact-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Contact Info Cards */
.contact-cards {
    margin-top: 50px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-card.principal {
    border-top-color: #0369A0;
}

.contact-card.office {
    border-top-color: #68bb59;
}

.contact-card h4 {
    color: #0369A0;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact-card h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #68bb59;
    bottom: 0;
    left: 0;
}

.contact-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-card i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
    color: #0369A0;
    font-size: 1.1rem;
}

/* Google Map */
.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
}

.social-icons li {
    margin-right: 10px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    color: white;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.contact-info i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-text-hindi {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .contact-table td, 
    .contact-table th {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-text-hindi {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .contact-table {
        display: block;
        overflow-x: auto;
    }
    
    .top-header .col-md-6 {
        margin-bottom: 10px;
    }

    .logo-container {
        text-align: center;
    }

    .logo-img {
        margin-bottom: 15px;
    }

    .navbar-nav {
        margin-top: 15px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .contact-table td, 
    .contact-table th {
        padding: 12px;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .logo-img {
        max-height: 120px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-text-hindi {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 400px) {
    .contact-table td, 
    .contact-table th {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .map-container {
        height: 200px;
    }
}